home *** CD-ROM | disk | FTP | other *** search
/ All for Cell Phones: Sony Ericsson / Sony-Ericsson 2004.iso / Java / ManInLine / Mil.jar / mil / MilKey.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-11-30  |  1.0 KB  |  24 lines

  1. package mil;
  2.  
  3. import javax.microedition.lcdui.Displayable;
  4. import javax.microedition.lcdui.Form;
  5.  
  6. public class MilKey extends Form {
  7.    private static MilImCache sImCache;
  8.  
  9.    public MilKey(MilImCache var1) {
  10.       super(Mil.sL.gkHead());
  11.       sImCache = var1;
  12.       ((Form)this).append(Mil.sL.gkUp());
  13.       ((Form)this).append(Mil.sL.gkDo());
  14.       ((Form)this).append(Mil.sL.gkLe());
  15.       ((Form)this).append(Mil.sL.gkRi());
  16.       ((Form)this).append(Mil.sL.gkBo());
  17.       ((Form)this).append(Mil.sL.gkTe());
  18.       ((Form)this).append(Mil.sL.gkPau());
  19.       ((Form)this).append(Mil.sL.gkAc());
  20.       ((Displayable)this).addCommand(Mil.sCmdOk);
  21.       ((Displayable)this).setCommandListener(Mil.sMil);
  22.    }
  23. }
  24.